home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # Shell program to cat PostScript output files generated
- # from itrans (-P option). Prepends the font description file
- # and the prologue file. Assumes Devnagari Output............
-
- # set LIBDIR to the itrans lib directory
- LIBDIR=/usr1/avinash/ITRANS/lib
-
- # set DOCAT to empty if you want output on stdout, else
- # assign to a pipe to the printer
- # DOCAT=
- # DOCAT="| lp"
- DOCAT="| lp -oh"
-
- eval cat $LIBDIR/devnac.ps $LIBDIR/itrans.pro $* $DOCAT
- # eval need to evaluate the | char, if present, in DOCAT
-